home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / macabuse / inc / profile.hpp < prev    next >
C/C++ Source or Header  |  1997-05-20  |  304b  |  17 lines

  1. #ifndef __JPROF_HPP_
  2. #define __JPROF_HPP_
  3.  
  4. #include "event.hpp"
  5.  
  6. void profile_init();
  7. void profile_reset();
  8. void profile_uninit();
  9. void profile_add_time(int type, float amount);
  10. void profile_update();
  11. void profile_toggle();
  12. int profile_handle_event(event &ev);
  13. int profiling(); 
  14.  
  15.  
  16. #endif
  17.